home *** CD-ROM | disk | FTP | other *** search
/ Fritz: All Fritz / All Fritz.zip / All Fritz / FILES / PROGASIC / BASFILES.LZH / CLRFSSCR.BAS < prev    next >
BASIC Source File  |  1988-09-10  |  224b  |  11 lines

  1. '$INCLUDE:'QBTOOLS.INC'
  2. '' '$INCLUDE: 'qbtools2.inc'
  3.  
  4. SUB ClearFromStartScreen (Row%, Col%, Att%)
  5.    FOR j% = 1 TO Row% - 1
  6.       ClearEndLine j%, 1, Att%
  7.    NEXT j%
  8.    ClearFromStartLine Row%, Col%, Att%
  9. END SUB
  10.  
  11.